home *** CD-ROM | disk | FTP | other *** search
/ MacWorld Online: Hot Shareware / MacWorld CD-ROM Online (Hot Shareware).cdr / MacWorld2 movie / 00207.ls < prev    next >
Encoding:
Text File  |  1996-03-06  |  538 b   |  20 lines

  1. on mouseDown
  2.   global scrCount, scrMax, T
  3.   repeat while the mouseDown
  4.     if scrCount < scrMax then
  5.       set the locV of sprite 1 to the locV of sprite 1 - 15
  6.       set the locV of sprite 24 to the locV of sprite 24 + T
  7.       set the locV of sprite 23 to the locV of sprite 23 + T
  8.       updateStage()
  9.       set scrCount to scrCount + 1
  10.       next repeat
  11.     end if
  12.     if scrCount = scrMax then
  13.       set the locV of sprite 24 to 457
  14.       set the locV of sprite 23 to 457
  15.     end if
  16.     updateStage()
  17.   end repeat
  18.   moveHotSpots()
  19. end
  20.